provider SCIM GET /api/0/organizations/{organization_id_or_slug}/scim/v2/Groups
@utdk/sentry /api/0/organizations/{organization_id_or_slug}/scim/v2/Groups
List an Organization's Paginated Teams
Returns a paginated list of teams bound to a organization with a SCIM Groups GET Request. Note that the members field will only contain up to 10,000 members.
organization_id_or_slug path required
The ID or slug of the organization the resource belongs to.
string
startIndex query
SCIM 1-offset based index for pagination.
integer
count query
The maximum number of results the query should return, maximum of 100.
integer
filter query
A SCIM filter expression. The only operator currently supported is `eq`.
string
excludedAttributes query
Fields that should be left off of return values. Right now the only supported field for this query is members.
array

Try it

Authentication
Configure credentials for API Reference
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

listAnOrganizationSPaginatedTeams
GET/api/0/organizations/{organization_id_or_slug}/scim/v2/Groups
Returns a paginated list of teams bound to a organization with a SCIM Groups GET Request. Note that the members field will only contain up to 10,000 members.

Parameters

required

The ID or slug of the organization the resource belongs to.

SCIM 1-offset based index for pagination.

The maximum number of results the query should return, maximum of 100.

A SCIM filter expression. The only operator currently supported is `eq`.

Fields that should be left off of return values. Right now the only supported field for this query is members.

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import sentry from '@utdk/sentry';

await sentry.listAnOrganizationSPaginatedTeams({
  "startIndex": 1,
  "count": 100
})